home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- Boolean BOOLEAN001
- Integer INTEGER001
- Integer INTEGER002
- Integer INTEGER003
- String STRING001
- String STRING002
- String STRING003
- String STRING004
- String STRING005
- String STRING006
-
- ;------------------------------------------------------------------------------
-
- STRING005 = Chr(8)
- STRING006 = Chr(13)
- If (TokCount() == 0) End
- STRING003 = GetToken()
- If (!Exist(STRING003)) End
- FOpen 1, STRING003, 0, 0
- AnsiPos 1, 23
- Print "@X0EWhat is your first name? "
- While (!BOOLEAN001 && !Ferr(1)) Do
- FGet 1, STRING004
- Print STRING004
- INTEGER001 = GetX()
- INTEGER002 = GetY()
- INTEGER003 = CurColor()
- AnsiPos 1, 23
- Print "@X0EWhat is your first name? "
- DefColor
- STRING002 = Inkey()
- If (((STRING002 >= " ") && (STRING002 <= "~")) && (Len(STRING001) < 50)) Then
- STRING001 = STRING001 + STRING002
- ElseIf ((STRING002 == STRING005) && (Len(STRING001) > 0)) Then
- STRING001 = Left(STRING001, Len(STRING001) - 1)
- ElseIf (STRING002 == STRING006) Then
- STRING001 = STRING001 + STRING002
- BOOLEAN001 = 1
- Endif
- Print STRING001, " ", STRING005
- AnsiPos INTEGER001, INTEGER002
- Color INTEGER003
- EndWhile
- FClose 1
- If (BOOLEAN001) Goto LABEL001
- AnsiPos 1, 23
- DefColor
- ClrEol
- KbdStuff STRING001
- STRING002 = "What is your first name"
- STRING001 = ""
- InputStr STRING002, STRING001, 14, 50, Mask_Ascii(), 0
- STRING001 = STRING001 + STRING006
- :LABEL001
- Cls
- KbdStuff STRING001
- End
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 3 End
- ; 1 Cls
- ; 1 ClrEol
- ; 1 Color
- ; 8 Goto
- ; 14 Let
- ; 4 Print
- ; 7 If
- ; 1 FOpen
- ; 1 FClose
- ; 1 FGet
- ; 2 DefColor
- ; 1 InputStr
- ; 2 KbdStuff
- ; 4 AnsiPos
- ;
- ;
- ; ■ Functions used :
- ;
- ; 3 +
- ; 1 -
- ; 3 ==
- ; 1 <
- ; 1 <=
- ; 1 >
- ; 1 >=
- ; 8 !
- ; 4 &&
- ; 3 Len(
- ; 1 Left()
- ; 1 Ferr()
- ; 2 Chr()
- ; 1 Inkey()
- ; 1 Mask_Ascii()
- ; 1 GetToken()
- ; 1 Exist()
- ; 1 GetX()
- ; 1 GetY()
- ; 1 CurColor()
- ; 1 TokCount()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : No flag
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 0 For/Next
- ; 1 While/EndWhile
- ; 3 If/Then or If/Then/Else
- ; 0 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-